home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1997 December / MACPOWER-1997-12.ISO.7z / MACPOWER-1997-12.ISO / AMUG / PROGRAMMING / Raven 1.2 Examples.sit / Raven 1.2 Examples / Quill / Source / PaneListTool.h < prev    next >
Text File  |  1997-01-23  |  1KB  |  47 lines

  1. /*
  2.  *  File:       PaneListTool.h
  3.  *    Function:    A tool window containing a list of all the Raven panes.
  4.  *  Written by: Jesse Jones
  5.  *
  6.  *  Copyright ゥ 1996 Jesse Jones. 
  7.  *    For conditions of distribution and use, see copyright notice in ZTypes.h  
  8.  *
  9.  *  Change History (most recent first):    
  10.  *
  11.  *         <->     9/02/96    JDJ        Created
  12.  */
  13.  
  14. #pragma once
  15.  
  16. #include <ZToolWindow.h>
  17.  
  18.  
  19. // ===================================================================================
  20. //    class CPaneListTool
  21. // ===================================================================================
  22. class CPaneListTool : public TToolWindow {
  23.  
  24.     typedef TToolWindow Inherited;
  25.  
  26. //-----------------------------------
  27. //    Initialization/Destruction
  28. //
  29. public:
  30.     virtual             ~CPaneListTool();
  31.         
  32.                         CPaneListTool();
  33.  
  34. //-----------------------------------
  35. //    Inherited API
  36. //
  37. protected:
  38.     virtual bool         OperatesOn(TWindow* wind) const;
  39.  
  40. //-----------------------------------
  41. //    TReanimator Support
  42. //
  43. public:
  44.     static     MReanimatable* Create(MReanimatable* parent);
  45.  
  46. };
  47.